home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 29 / CDT29.iso / e-Mail / WorldClient Pro 2.2.3 / wcsetup.exe / RESIZE.JS < prev    next >
Encoding:
Text File  |  2000-09-14  |  524 b   |  22 lines

  1. /**
  2.  * resize.js 0.3 970811
  3.  * by gary smith
  4.  * js component for "reloading page onResize"
  5.  */
  6.  
  7. if(!window.saveInnerWidth) {
  8.   window.onresize = resize;
  9.   window.saveInnerWidth = window.innerWidth;
  10.   window.saveInnerHeight = window.innerHeight;
  11. }
  12.  
  13. function resize() {
  14.     if (saveInnerWidth < window.innerWidth || 
  15.         saveInnerWidth > window.innerWidth || 
  16.         saveInnerHeight > window.innerHeight || 
  17.         saveInnerHeight < window.innerHeight ) 
  18.     {
  19.         window.history.go(0);
  20.     }
  21. }
  22.